@import "./fonts/iconfont.css";

html {
    font-size: 100px;
}

body {
    margin: 0 auto;
    background: #fff;
    font-size: 0.16rem;
    font-family: "microsoft yahei", "simhei", Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.jump_tool {
    width: 100%;
    position: relative;
    top: calc(-130px + -0.5rem);
}

.jump_tool2 {
    width: 100%;
    position: relative;
    top: -60px;
}

.jump_tool3 {
    position: relative;
    top: calc(-130px + -1rem);
}

/*自适应滚动tab*/
.hc_scrollTab {
    position: relative;
    margin: auto;
}

.hc_scrollTab>ul::-webkit-scrollbar {
    display: none;
}

.hc_scrollTab>.hc_scrollTab_toolbtn {
    display: none;
    height: 40px;
    line-height: 40px;
    width: 23px;
    font-size: 16px;
    text-align: center;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
}

.hc_scrollTab.on>.hc_scrollTab_toolbtn {
    display: block;
}

.hc_scrollTab>.hc_scrollTab_toolbtn[data-type="l"] {
    left: 0;
}

.hc_scrollTab>.hc_scrollTab_toolbtn[data-type="r"] {
    right: 0;
}

/* pc顶部导航 */
.hc_pc_hd {
    position: relative;
    width: 100%;
}

.hc_navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    transition: all .5s;
    height: 70px;
}

.hc_fixed.hc_navbar,
.hc_special .hc_navbar {
    background-color: #fff;
}

.hc_cont {
    display: flex;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.hc_navbar_l {
    display: flex;
    align-items: center;
}

.hc_logo {
    display: block;
    position: relative;
}

.hc_logo2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    opacity: 0;
}

.hc_fixed .hc_logobox>img,
.hc_special .hc_logobox>img {
    opacity: 1;
}

.hc_logobox>img {
    width: 100px;
}

.hc_fixed .hc_logobox .hc_logo1,
.hc_special .hc_logobox .hc_logo1 {
    opacity: 0;
}

.hc_navbar_c {
    width: 100%;
}

.hc_nav {
    display: flex;
    padding-left: 0.5rem;
}

.hc_nav_li {
    position: relative;
    padding: 0 0.26rem;
}

.hc_nav_li::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #13558A;
    transform: translate(-50%);
    transition: all .36s;
}

.hc_nav_li:hover::before {
    width: 60%;
}

.hc_nav_a {
    display: block;
    font-size: 0.18rem;
    color: #fff;
    line-height: 70px;
}


.hc_fixed .hc_nav_a,
.hc_special .hc_nav_a {
    color: #333;
}

.hc_fixed .hc_nav_a:hover,
.hc_special .hc_nav_a:hover {
    color: #13558A;
}

.hc_nav_a>i {
    font-size: 0.3rem;
}

.hc_nav_xl {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 69px;
    width: 100%;
    border-top: 1px solid #dfdede;
    box-shadow: 0 4px 4px rgb(0 0 0 / 7%);
    overflow: hidden;
    height: 60px;
}

.hc_nav_xl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 1;
    transition: all .5s ease-in-out;
}

.hc_subnav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc_subnav_li {
    position: relative;
    padding: 0 30px;
}

.hc_subnav_li::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #13558A;
    transform: translate(-50%);
    transition: all .36s;
}

.hc_subnav_li:hover::before {
    width: 60%;
}

.hc_subnav_li a {
    display: block;
    line-height: 60px;
    font-size: 0.16rem;
}

.hc_navbar_r {
    position: relative;
}

.hc_searchbtn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.hc_searchbtn img {
    width: 20px;
}

.hc_searchbtn.active .hc_btnimg {
    display: none;
}

.hc_opbtn {
    display: none;
    width: 30px;
    line-height: 70px;
    position: relative;
}

.hc_searchbtn.active .hc_opbtn {
    display: block;
}

.hc_opbtn::before,
.hc_opbtn::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 1px;
    background-color: #333;
    position: absolute;
    right: 0;
    transition: all .3s;
}

.hc_opbtn::before {
    top: 0;
    transform: rotate(-45deg);
}

.hc_opbtn::after {
    top: 0;
    transform: rotate(45deg);
}

.hc_searchicon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    opacity: 0;
    transition: all .5s;
}

.hc_fixed .hc_searchicon,
.hc_special .hc_searchicon {
    opacity: 1;
}

.hc_searchBox {
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    right: 40px;
    top: 0;
    opacity: 0;
    transition: all .5s;
}

.hc_searchBox.active {
    display: flex;
    opacity: 1;
}

.hc_searchBox input {
    background: transparent;
    padding: 0px;
    padding-left: 20px;
    padding-right: 50px;
    color: #888;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    width: 0;
    height: 34px;
    border-radius: 34px;
    font-size: 12px;
    transition: all .5s;
    cursor: context-menu;
}

.hc_searchBox.active input {
    width: 249px;
    cursor: auto;
}

.hc_fixed .hc_searchBox input,
.hc_special .hc_searchBox input {
    border-color: rgba(0, 29, 58, 0.29);
}

.hc_searchData {
    display: flex;
    display: none;
    align-items: center;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 6px;
    z-index: 99;
}

.hc_searchBox.active .hc_searchData {
    display: flex;
}

.hc_searchData img {
    width: 20px;
}

/* ph顶部导航 */

.hc_ph_hd {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 60px;
    /* background-color: #fff; */
}

.hc_ph_hd.hc_fixed,
.hc_ph_hd.hc_special {
    background-color: #fff;
}

.hc_ph_navbar {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 99;
    padding: 0 20px;

}

.hc_fixed .hc_ph_navbar,
.hc_special .hc_ph_navbar {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.hc_ph_logo {
    width: 100%;
    height: 100%;
}

.hc_ph_nav_r {
    position: absolute;
    right: 20px;
}

.hc_ph_menu {
    overflow: hidden;
    width: 26px;
    height: 60px;
    margin-left: 15px
}

.hc_phmenubox {
    width: 26px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hc_phmenubox .hc_point {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 22px;
    margin-top: 15px;
    transform: translateX(-3px);
}


.hc_ph_btn {
    display: inline-block;
    width: 26px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 10px;
    right: 0;
}

.hc_fixed .hc_ph_btn,
.hc_special .hc_ph_btn {
    background-color: #333;
}


.hc_ph_btn::before,
.hc_ph_btn::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    transition: all .3s;
}

.hc_fixed .hc_ph_btn::before,
.hc_fixed .hc_ph_btn::after,
.hc_special .hc_ph_btn::before,
.hc_special .hc_ph_btn::after {
    background-color: #333;
}

.hc_ph_btn::before {
    top: 8px;
}

.hc_ph_btn::after {
    top: -8px;
}

.active .hc_ph_btn {
    background-color: transparent;
}

.active .hc_ph_btn::before {
    top: 0;
    transform: rotate(-45deg);
}

.active .hc_ph_btn::after {
    top: 0;
    transform: rotate(45deg);
}

/* ph下拉 */
.hc_phxia {
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100vh - 64px);
    overflow: auto;
    pointer-events: none;
    z-index: 98;

}

.hc_phxia.active {
    pointer-events: all;
}

.hc_phxia::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    transition: all .36s;
}

.hc_phxia.active::before {
    opacity: 1;
}

.hc_xiala {
    display: none;
    width: 100%;
    background-color: #fff;
    padding-bottom: 5px;
}

.hc_phul1>li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.hc_xiala h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.hc_xiala h4 a {
    font-size: 0.32rem;
    line-height: 48px;
}

.hc_xiala h4 i {
    color: #333;
    font-size: 12px;
    transition: all .5s;
}

.hc_xiala h4.active i {
    transform: rotate(90deg);
}

.hc_xiala .hc_phul2 {
    display: none;
    padding-top: 7px;
    padding-bottom: 8px;
    background: #f7f8fa;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.hc_phul2 .hc_phxia_cont {
    padding: 0 20px;
}

.hc_xiala h5 a {
    font-size: 0.3rem;
    line-height: 35px;
}

/* ph搜索 */
.hc_searchPh {
    position: relative;
    margin: 20px;
}

.hc_searin {
    width: 100%;
    height: 35px;
    border-radius: 30px;
    border: 2px solid rgba(0, 0, 0, .1);
    outline: none;
    padding-left: 30px;
    color: #888;
}

.hc_phsubmit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 35px;
    position: absolute;
    top: 0;
    right: 0;
}

.hc_phsubmit img {
    width: 15px;
}

/* 底部 */
.hc_foot {
    width: 100%;
    background-color: rgb(0, 44, 82);
}

.hc_foot_ctn {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.hc_foot_t {
    display: flex;
    padding-top: 0.8rem;
    padding-bottom: 0.3rem;
}

.hc_fotnav {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.hc_fotnav_item {
    margin-right: 0.2rem;
}


.hc_foth {
    margin-bottom: 0.25rem;
}

.hc_foth a {
    font-size: 0.2rem;
    color: #fff;
}

.hc_fotdesc_li {
    margin-bottom: 0.25rem;
}

.hc_fotdesc_li a {
    color: #fff;
    opacity: .52;
}

.hc_fotnle {
    width: 286px;
}

.hc_fotncor {
    width: 100%;
}

.hc_dizhili {
    display: flex;
    margin-bottom: 15px;
}


.hc_dizhitxt {
    display: flex;
    align-items: center;
    color: #fff;
}

.hc_dizhitxt p a {
    font-size: 0.2rem;
    margin-left: 10px;
    color: #fff;
}

.hc_dizhili2 .hc_dizhitxt p a {
    font-size: 0.16rem;
    margin: 0;
}

.hc_dizhili2 .hc_dizhiico {
    padding-top: 4px;
}

.hc_dizhili2 .hc_dizhitxt p {
    font-size: 0.14rem;
    line-height: 20px;
    opacity: .52;
    margin-left: 10px;
}

.hc_qrcode {
    padding-top: 0.2rem;
}

.hc_qrcodeli {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.hc_qrcodeli span {
    margin-top: 10px;
    color: #fff;
    opacity: .52;
}

.hc_qrcodeli img {
    width: 100px;
}

.hc_foot_b {
    border-top: 1px solid rgba(255, 255, 255, 0.52);
    padding: 40px 0;
}

.hc_foot_b p {
    font-size: 0.14rem;
    line-height: 24px;
    color: #fff;
    opacity: .8;
    text-align: center;
    padding: 0 20px;
}

.hc_foot_b p a {
    color: #fff;
}

/* pc分页 */
.hc_fy {
    padding: 0.5rem 0 0;
}

.hc_fenye {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    text-align: center;
}

.hc_fenye li {
    float: left;
    line-height: 30px;
    margin: 0px 10px;
}

.hc_fenye li a {}

.hc_fenye li a {
    display: block;
    width: 32px;
    height: 32px;
    border: 1px solid transparent;
    font-size: 14px;
    color: #666;
    text-align: center;
    border-radius: 50%;
    transition: all .36s;
}

.hc_fenye li a i {
    font-size: 12px;
    color: inherit;
}

.hc_fenye li.first a i,
.hc_fenye li.end a i {
    font-size: 14px;
}

.hc_fyli.activepage {
    cursor: context-menu;
}

.hc_fenye li:hover a {
    color: #fff;
    background: #13558A;

}

.hc_fyli.activepage a {
    color: #fff;
    background: #13558A;
}

/* ph分页 */
.hc_phfy {
    display: none;
    padding: 0 20px;
    padding-bottom: 20px;
}

.hc_phfy .last,
.hc_phfy .next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 30px;
    color: #fff;
    border-radius: 10px;
    background-color: #13558A;
}

/* 404样式 */
.hc_error {
    display: flex;
    align-items: center;
    height: 100vh;
}

.hc_error_ctn {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
}

.hc_error_l {
    width: 45%;
}

.hc_error_l img {
    width: 100%;
}

.hc_error_r {
    width: 55%;
}

.hc_error_r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.hc_error_r2 {
    align-items: center;
}

.hc_error_docm>h4 {
    font-size: 36px;
    font-weight: 700;
    color: #002c52;
    margin-bottom: 30px;
}

.hc_error_docm>p {
    font-size: 16px;
    color: #5b5b5b;
    line-height: 30px;
}

.hc_error_back {
    width: 100%;
}

.hc_error_back>a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    background-color: rgb(0, 44, 82);
    width: 119px;
    height: 41px;
    margin-top: 50px;
}

@media (max-width:1400px) {
    .hc_searchBox.active input {
        width: 3rem;
    }

    .jump_tool {
        top: -150px;
    }

    .hc_main_nav ul li a {
        font-size: 12px !important;
    }

    /* 
    .hc_nav_a {
        font-size: 14px;
    } */
}

@media (max-width:1024px) {

    .hc_pc_hd {
        display: none;
    }

    .hc_ph_hd {
        display: block;
    }

    .hc_foot_t {
        display: flex;
        flex-direction: column;
    }

    .hc_fotnav {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .hc_qrcodeli {
        align-items: flex-start;
    }

    /* 分页 */
    .hc_pcfy {
        display: none;
    }

    .hc_phfy {
        display: block;
    }

    /* 404 */
    .hc_error_ctn {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hc_error_l {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 40px;
    }

    .hc_error_l img {
        width: 7rem;
    }

    .hc_error_r {
        width: 100%;
        align-items: center;
    }

    .hc_error_docm>h4 {
        text-align: center;
        font-size: 20px;
    }

    .hc_error_docm>p {
        text-align: center;
    }

    .hc_error_back {
        display: flex;
        justify-content: center;
    }

    p {
        font-size: 12px;
    }

    .hc_body h2 {
        font-size: 22px !important;
    }

    .hc_body .hc_baner_desc h2 {
        font-size: 28px !important;
    }

}

@media (max-width:640px) {
    .hc_fotnav_item {
        width: 33.3333%;
        margin: 0;
        margin-bottom: 20px;
    }

    .hc_fotnle {
        width: 100%;
    }

    .jump_tool.ts {
        top: -170px;
    }
}


@-webkit-keyframes fadeInUp50 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp50 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp50 {
    -webkit-animation-name: fadeInUp50;
    animation-name: fadeInUp50
}




.pageBg {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    left: 0px;
    top: 0px;
    cursor: pointer
}

/* 申请 */
.sqNav {
    position: fixed;
    right: 0;
    top: -100%;
    width: 7.7rem;
    background: #fff;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    transition: all .5s ease;
}

.sqNav .closeIco {
    position: absolute;
    right: 0;
    top: 0;
    width: 1.1rem;
    height: 80px;
    background: #13558A;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.sqNav .closeIco img {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -13px;
    margin-top: -13px;
}

.sqNav input,
.sqNav textarea {
    background: transparent;
    padding: 0px 20px;
    font-size: 12px;
    font-family: "microsoft yahei", "simhei", Arial, sans-serif;
    color: #888;
    outline: none;
    border: 0px;
}

.sqNav.on {
    opacity: 1;
    height: 100%;
}

.sqNav .main {
    padding: 1.4rem 0 0 0.65rem;
}

.sqNav .scroll {
    overflow: auto;
    height: 80vh;
    padding-right: 1.05rem;
}

.sqNav .scroll::-webkit-scrollbar {
    width: 4px;
}

.sqNav .scroll::-webkit-scrollbar-track {
    background-color: #e5e5e5;
}

.sqNav .scroll::-webkit-scrollbar-thumb {
    background-color: #13558A;
}

.sqNav .title {
    font-size: 0.32rem;
    color: #13558A;
    line-height: 0.32rem;
    font-weight: bold;
    padding-bottom: 0.15rem;
}

.sqNav .msg {
    font-size: 14px;
    color: #999;
    padding-bottom: 0.45rem;
}

.sqNav .form {
    padding-top: 0.1rem;
    overflow: hidden;
}

.sqNav .form ul {
    margin-right: -0.4rem;
}

.sqNav .form li {
    float: left;
    width: 50%;
    padding-bottom: 0.15rem;
}

.sqNav .form li.ts {
    width: 100%;
}

.sqNav .form li .box {
    margin-right: 0.4rem;
}

.sqNav .form li p {
    height: 24px;
    font-size: 14px;
    color: #888;
    font-weight: bold;
}

.sqNav .form li p em {
    color: #ff0000;
    padding-left: 0.15rem;
}

.sqNav .form li .input1 {
    width: 100%;
    height: 0.5rem;
    line-height: 0.5rem;
    background: #eee;
    font-size: 14px;
}

.sqNav .form2 h2 {
    font-size: 14px;
    color: #888;
    padding-bottom: 0.1rem;
}

.sqNav .form2 textarea {
    width: 100%;
    height: 1rem;
    background: #eee;
    resize: none;
    padding: 10px 20px;
}

.sqNav .btnDiv {
    padding-top: 0.15rem;
}







/*右侧悬浮窗*/
.sideBarDiv {
    position: fixed;
    right: 0px;
    bottom: 20%;
    z-index: 99;
    width: 70px;
    cursor: pointer;
}

.sideBar {
    position: relative;
}

.sideBar .cwj {
    width: 70px;
    height: 70px;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: #13558A;
    position: relative;
    margin-bottom: 2px;
}

.sideBar .cwj span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    line-height: 24px;
}

.sideBar ul {
    /* display:none;*/
    /* position: absolute; */
    /* right: 0; */
    /* top: -215px; */
}

.sideBar li {
    position: relative;
    height: 70px;
    margin-top: 1px;
    cursor: pointer;
    box-shadow: 0px 0px 15px 0px rgba(158, 165, 177, 0.14);
}

.sideBar .mouse {
    position: absolute;
    left: -230px;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transition: all .5s ease;
}

.sideBar .img {
    background: #fff;
    height: 70px;
    /* line-height: 70px; */
    text-align: center;
    width: 70px;
    overflow: hidden;
    position: relative;
    z-index: 1;

}

.sideBar .img img {
    width: 40px;
    transition: all .5s ease;
    margin: 15px 0;
}

.sideBar li.liNow .img .show,
.sideBar li.liNow .img .hide {
    transform: translateY(-70px);
    -webkit-transform: translateY(-70px);
    -moz-transform: translateY(-70px)
}

.sideBar li.liNow .img {
    background: #13558A;
}

.sideBar .liNow .mouse {
    opacity: 1;
    visibility: visible;
}

.sideBar .li02 .mouse {
    left: -190px;
    width: 180px;
    box-shadow: 0px 0px 15px 0px rgba(158, 165, 177, 0.14);
}

.sideBar .li02.liNow .mouse {
    left: -180px;
}

.sideBar .li02 .bbb {
    background: #fff;
    width: 180px;
    height: 187px;
    box-shadow: 0px 0px 15px 0px rgba(158, 165, 177, 0.14);
}

.sideBar .li02 .title {
    padding: 25px 0 0 38px;
    font-size: 14px;
}

.sideBar .li02 .list2 {
    padding: 15px 0 0 38px;
}

.sideBar .li02 .list2 dd {
    padding-right: 38px;
    float: left;
}

.sideBar .li02 .list2 dd img {
    width: 100px;
}

.sideBar .li03 .mouse {
    background: #fff;
    width: 268px;
    height: 70px;
    left: -268px;
    box-shadow: 0px 0px 15px 0px rgba(158, 165, 177, 0.14);
}

.sideBar .li03.liNow .mouse {
    left: -258px;
}

.sideBar .li03 .tel {
    line-height: 70px;
    padding-left: 20px;
    font-size: 14px;
    color: #939393;
}

.sideBar .li03 .tel span {
    padding-left: 18px;
    font-size: 18px;
    color: #13558A;
    font-family: 'mont';
}

.sideBar .li05 .mouse {
    background: #fff;
    width: 288px;
    height: 70px;
    left: -288px;
    box-shadow: 0px 0px 15px 0px rgba(158, 165, 177, 0.14);
}

.sideBar .li05.liNow .mouse {
    left: -278px;
}

.sideBar .li05 .tel {
    line-height: 70px;
    padding-left: 20px;
    font-size: 14px;
    color: #939393;
}

.sideBar .li05 .tel span {
    padding-left: 18px;
    font-size: 18px;
    color: #13558A;
    font-family: 'mont';
}

.sideBar .li04 .mouse {
    background: #fff;
    width: 98px;
    height: 70px;
    left: -98px;
    box-shadow: 0px 0px 15px 0px rgba(158, 165, 177, 0.14);
}

.sideBar .li04.liNow .mouse {
    left: -88px;
}

.sideBar .li04 .title {
    line-height: 70px;
    padding-left: 20px;
    color: #13558A;
    font-size: 14px;
}


/* 弹出框 */
.ui-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    background: rgba(0, 0, 0, .4);
    display: none;
    color: #000
}

.ui-dialog-notice {
    background: transparent
}

.ui-dialog.show {
    display: -webkit-box;
    display: box
}

.ui-dialog .ui-dialog-cnt {
    border-radius: 6px;
    width: 270px;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, .95);
    position: relative
}

.ui-dialog .ui-dialog-bd {
    text-align: center;
    min-height: 71px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 18px;
    font-size: 16px;
    line-height: 22px;
    display: -webkit-box;
    display: box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    -webkit-box-orient: vertical
}

.ui-dialog .ui-dialog-bd h4 {
    margin-bottom: 4px;
    font-size: 16px;
    width: 100%;
    text-align: center
}

.ui-dialog .ui-dialog-bd div {
    width: 100%
}

.ui-dialog .ui-dialog-ft {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}

.ui-dialog .ui-dialog-ft button {
    height: 42px;
    line-height: 42px;
    background: #f5f5f6;
}

.ui-dialog .ui-dialog-ft button:active {
    background: rgba(0, 0, 0, .1)
}

.ui-dialog .ui-dialog-ft button:first-child {
    border-bottom-left-radius: 6px;
    background-image: none
}

.ui-dialog .ui-dialog-ft button:last-child {
    border-bottom-right-radius: 6px
}

.ui-dialog-notice .ui-dialog-cnt {
    width: 130px;
    height: 110px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    text-align: center;
    background: rgba(0, 0, 0, .65);
    border-radius: 6px;
    color: #fff
}

.ui-btn-group {
    display: -webkit-box;
    width: 100%
}

.ui-btn-group button {
    color: #13558A;
    border: 0;
    display: block;
    line-height: 50px;
    height: 48px;
    -webkit-box-flex: 1;
    background-color: #fff;
    text-align: center;
    font-size: 16px;
    border-right: 1px #c8c7cc solid;
    width: 100%;
    border-top: 1px solid #c8c7cc
}

.ui-btn-group button:active {
    background: rgba(0, 0, 0, .1)
}

.ui-btn-group button:last-child {
    border-right: 0;
    background-image: none
}


@media (max-width:1024px) {
    .hc_fotdesc_li a,.hc_foot_b p,.hc_dizhili2 .hc_dizhitxt p a,.hc_dizhili2 .hc_dizhitxt p,.hc_qrcodeli span,.hc_foth a,.hc_dizhitxt p a{
        font-size: 12px;;
    }
    .sqNav {
        width: 100%;
    }

    .sqNav .main {
        padding: 2rem 0 0 0.3rem;
    }

    .sqNav .scroll {
        height: 80vh;
        padding-right: 0.3rem;
    }

    .sqNav .title {
        font-size: 0.36rem;
        line-height: 0.36rem;
        padding-bottom: 0.2rem;
    }

    .sqNav .msg {
        font-size: 0.26rem;
    }

    .sqNav .txt {
        font-size: 0.26rem;
        padding-bottom: 0.2rem;
    }

    .sqNav .multiple li {
        width: 50%;
        font-size: 0.24rem;
        padding-bottom: 0.18rem;
    }

    .sqNav .multiple li .lbox {
        padding-left: 0.38rem;
        height: 0.48rem;
        line-height: 0.48rem;
        background-size: 0.24rem;
    }

    .sqNav .multiple .liNow .lbox {
        background-size: 0.24rem;
    }

    .sqNav .form {
        padding-top: 0.2rem;
    }

    .sqNav .form ul {
        margin-right: 0;
    }

    .sqNav .form li {
        float: none;
        width: 100%;
        padding-bottom: 0.2rem;
    }

    .sqNav .form li .box {
        margin-right: 0;
    }

    .sqNav .form li p {
        height: 0.48rem;
        font-size: 0.26rem;
    }

    .sqNav .form li .input1 {
        height: 0.8rem;
        line-height: 0.8rem;
        font-size: 0.26rem;
    }

    .sqNav .form2 h2 {
        padding-bottom: 0.2rem;
        font-size: 0.26rem;
    }

    .sqNav .form2 textarea {
        height: 2.8rem;
    }

    .sqNav .btnDiv {
        padding-top: 0.25rem;
    }

    .sqNav .btnDiv a {
        width: 2.8rem;
        height: 0.8rem;
        line-height: 0.8rem;
        font-size: 0.3rem;
        text-indent: 0.45rem;
    }

    .sideBarDiv {
        width: 1.0rem;
        height: auto;
        bottom: 15%;
    }

    .sideBar .cwj {
        width: 1rem;
        height: 1rem;
        font-size: 0.3rem;
    }

    .sideBar .cwj span {
        line-height: 16px;
    }

    .sideBar ul {
        display: block;
        top: -3.1rem;
    }

    .sideBar li {
        height: 1rem;
    }

    .sideBar .mouse {
        left: -230px;
    }

    .sideBar .img {
        height: 1rem;
        width: 1rem;
    }

    .sideBar .img img {
        width: 0.64rem;
        margin: 0.18rem;
    }

    .sideBar li.liNow .img .show,
    .sideBar li.liNow .img .hide {
        transform: translateY(-1rem);
        -webkit-transform: translateY(-1rem);
        -moz-transform: translateY(-1rem)
    }

    .sideBar .li02 .mouse {
        left: -3rem;
        width: 3rem;
    }

    .sideBar .li02.liNow .mouse {
        left: -3rem;
    }

    .sideBar .li02 .bbb {
        width: 5.2rem;
        height: 3.4rem;
    }

    .sideBar .li02 .title {
        padding: 0.3rem 0 0 0.5rem;
        font-size: 0.26rem;
    }

    .sideBar .li02 .list2 {
        padding: 0.2rem 0 0 0.5rem;
    }

    .sideBar .li02 .list2 dd {
        padding-right: 0.3rem;
    }

    .sideBar .li02 .list2 dd img {
        width: 2.0rem;
    }

    .sideBar .li03 .mouse {
        width: 4.3rem;
        height: 1.0rem;
        left: -4.3rem;
    }

    .sideBar .li03.liNow .mouse {
        left: -4.2rem;
    }

    .sideBar .li03 .tel {
        line-height: 1.0rem;
        padding-left: 0.35rem;
        font-size: 0.26rem;
    }

    .sideBar .li03 .tel span {
        padding-left: 0.25rem;
        font-size: 0.3rem;
    }

    .sideBar .li05 .mouse {
        width: 5rem;
        height: 1.0rem;
        left: -5rem;
    }

    .sideBar .li05.liNow .mouse {
        left: -5rem;
    }

    .sideBar .li05 .tel {
        line-height: 1.0rem;
        padding-left: 0.35rem;
        font-size: 0.26rem;
    }

    .sideBar .li05 .tel span {
        padding-left: 0.25rem;
        font-size: 0.3rem;
    }

    .sideBar .li04 .mouse {
        width: 2rem;
        height: 1.0rem;
        left: -2rem;
    }

    .sideBar .li04.liNow .mouse {
        left: -1.9rem;
    }

    .sideBar .li04 .title {
        line-height: 1.0rem;
        padding-left: 0.35rem;
        font-size: 0.26rem;
    }

    .topA {
        bottom: 0;
        width: 1.0rem !important;
        height: 1.0rem !important;
    }

    .sqNav .closeIco {
        width: 1.4rem;
        height: 1.2rem;
    }

    .sqNav .closeIco img {
        margin-left: -0.18rem;
        margin-top: -0.18rem;
        width: 0.36rem;
    }
}